package de.digisalt.dsnesds.core.utils.interfaces;

public interface IRefreshableEditorPart
{
		  /**
	   * This method distributes the refresh event triggered by the editor. In case any of your widgets needs to be
	   * refreshed in case of a model change, this is the method to invoke it.
	   */
	  public abstract void doRefresh();
	
}
